home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / d / devpak / devpakv3.01kickstartv1.3b.dms / devpakv3.01kickstartv1.3b.adf / include / exec / resident.i < prev    next >
Text File  |  1991-11-20  |  1KB  |  49 lines

  1.     IFND    EXEC_RESIDENT_I
  2. EXEC_RESIDENT_I SET    1
  3. **
  4. **    $Filename: exec/resident.i $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. **
  12.  
  13. *----------------------------------------------------------------
  14. *
  15. *   Resident Module Tag
  16. *
  17. *----------------------------------------------------------------
  18.  
  19.  STRUCTURE RT,0
  20.     UWORD RT_MATCHWORD            * word to match
  21.     APTR  RT_MATCHTAG            * pointer to structure base
  22.     APTR  RT_ENDSKIP            * address to continue scan 
  23.     UBYTE RT_FLAGS            * various tag flags
  24.     UBYTE RT_VERSION            * release version number
  25.     UBYTE RT_TYPE            * type of module
  26.     BYTE  RT_PRI            * initialization priority
  27.     APTR  RT_NAME            * pointer to node name
  28.     APTR  RT_IDSTRING            * pointer to id string
  29.     APTR  RT_INIT            * pointer to init code
  30.     LABEL RT_SIZE
  31.  
  32.  
  33. *------ Match word definition:
  34.  
  35. RTC_MATCHWORD    EQU    $4AFC        * (ILLEGAL instruction)
  36.  
  37.  
  38. *------ RT_FLAGS bit and field definitions:
  39.  
  40.     BITDEF RT,COLDSTART,0
  41.     BITDEF RT,AUTOINIT,7        * RT_INIT points to data
  42.  
  43. * Compatibility:
  44. RTM_WHEN    EQU    1        * field position in RT_FLAGS
  45. RTW_NEVER    EQU    0        * never ever init
  46. RTW_COLDSTART    EQU    1        * init at coldstart time
  47.  
  48.     ENDC    ; EXEC_RESIDENT_I
  49.